* configure.in (CPP): Autoconf sets this to a shell variable
authorJim Blandy <jimb@redhat.com>
Thu, 17 Jun 1993 02:55:11 +0000 (02:55 +0000)
committerJim Blandy <jimb@redhat.com>
Thu, 17 Jun 1993 02:55:11 +0000 (02:55 +0000)
reference, which doesn't work when it's edited into a makefile.
Expand that variable reference.

configure1.in

index 2ed13c1dd2ea68c0b08fd4fb0903bdba8eaa0770..9624fad4f0137e5cbff3f4373dbb67873f85aad4 100755 (executable)
@@ -1106,8 +1106,8 @@ echo '
 ' > ${tempcname}
 # The value of CPP is a quoted variable reference, so we need to do this
 # to get its actual value...
-foo=`eval "echo $CPP"`
-eval `${foo} -Isrc ${tempcname} \
+CPP=`eval "echo $CPP"`
+eval `${CPP} -Isrc ${tempcname} \
        | grep '@configure@' \
        | sed -e 's/^@configure@ \([^=]*=\)\(.*\)$/\1"\2"/'`
 rm ${tempcname}